home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 3517 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.0 KB

  1. Path: news.ov.com!news
  2. From: glenn@ov.com (Fletcher.Glenn@ov.com)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: help on libraries
  5. Date: 29 Jan 1996 17:50:33 GMT
  6. Organization: OpenVision
  7. Message-ID: <4ej1d9$rfo@spanky.pls.ov.com>
  8. References: <4e8cbc$7ep@fg1.plk.af.mil>
  9. Reply-To: glenn@ov.com
  10. NNTP-Posting-Host: foghorn.pls.ov.com
  11.  
  12. In article 7ep@fg1.plk.af.mil, andersom@plk.af.mil (Marshall Anderson) writes:
  13. > Might anyone know what I need to do to use the cond_init and mutex_init etc 
  14. >funtion calls.  I have included <synch.h> and <thread.h> but to no avail.
  15. >
  16. >Any solutions?
  17. >
  18. >Thanks alot
  19. >Marshall Anderson
  20. >andersom@zuni.plk.af.mil
  21. >
  22.  
  23. Let's clear up a little confusion.  Including a header file does not
  24. guarantee that the appropriate libraries will be loaded at compile time.
  25. You as the programmer are responsible for instructing the compiler to
  26. link in any libraries not included in the default set.  In most compilers,
  27. the default set is only the master C library.  Libraries including special
  28. functions are not normally loaded by default.
  29.  
  30.             Fletcher.Glenn@ov.com
  31.  
  32.  
  33.